function template
<random>

std::operator>>

template <class charT, class traits, class IntType>  basic_istream<charT,traits>& operator>> ( basic_istream<charT,traits>& is,                                    geometric_distribution<IntType>& distr );
Extract from input stream
Restores the distribution parameters and any other internal data into distr from the textual representation provided by is.

distr will generate the same sequence of random numbers as if equivalent invocations of operator() were performed on the object of the same type from which the provided text was obtained.

Parameters

is
istream object from which the representation is extracted.
The textual representation provided by is shall have been obtained by a previous call to operator<< on an ostream object of the same type with the same locale imbued.
distr
Distribution object whose state and parameters are changed.

Return Value

The same as parameter is.

A call to this function may set any of the internal state flags of is if:

flagerror
eofbitThe end of the source of characters is reached during its operations.
failbitThe input obtained could not be interpreted as a valid textual representation of an object of this type.
In this case, distr preserves the parameters and internal data it had before the call.
Notice that some eofbit cases will also set failbit.
badbitAn error other than the above happened.
(see ios_base::iostate for more info on these)

Additionally, in any of these cases, if the appropriate flag has been set with is's member function ios::exceptions, an exception of type ios_base::failure is thrown.

See also